home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / jpl_c.zip / ROUND.C < prev    next >
Text File  |  1986-05-18  |  640b  |  21 lines

  1. /* 1.0  04-27-84 */
  2. /************************************************************************
  3.  *            Robert C. Tausworthe                *
  4.  *            Jet Propulsion Laboratory            *
  5.  *            Pasadena, CA 91009        1984        *
  6.  ************************************************************************/
  7.     double
  8. round(x)        /* return x rounded to nearest integer in
  9.                magnitude                    */
  10. /*----------------------------------------------------------------------*/
  11. double x;
  12. {
  13.     double fint();
  14.  
  15.     if (x < 0.0)
  16.         x -= 0.5;
  17.     else    x += 0.5;
  18.     return (fint(x));
  19. }
  20.  
  21.